home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\HISTORY.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  507b  |  27 lines

  1. /*
  2.  * history.h: header for history.c 
  3.  *
  4.  * Written By Michael Sandrof
  5.  *
  6.  * Copyright(c) 1990 
  7.  *
  8.  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
  9.  *
  10.  * @(#)$Id: history.h,v 1.4 1994/07/02 02:38:10 mrg Stab $
  11.  */
  12.  
  13. #ifndef _HISTORY_H_
  14. #define _HISTORY_H_
  15.  
  16. extern    void    set_history_size();
  17. extern    void    set_history_file();
  18. extern    void    add_to_history();
  19. extern    char    *get_from_history();
  20. extern    char    *do_history();
  21.  
  22. /* used by get_from_history */
  23. #define NEXT 0
  24. #define PREV 1
  25.  
  26. #endif /* _HISTORY_H_ */
  27.